
from urllib.request import urlopen

with urlopen('http://sixty-north.com/c/t.txt') as story:
    story_words = []
    for line in story:
        line_words = line.decode('utf-8').split()#make line_words a string instead of byte
        for word in line_words:
            story_words.append(word)

story_words